home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / business / pcprojct.zip / PROJECT.ZOO / proj.lod < prev    next >
Text File  |  1990-05-10  |  3KB  |  65 lines

  1. /* Proj.lod  --load the files for PC-Project 3.0
  2.   
  3.    To load this file in the workspace type
  4.    
  5.         load("proj.lod");
  6.         load();
  7.         
  8.    This will load all of the classes for the project manager application.
  9.    If you don't have Language Extensions, delete the files marked below.
  10.    You will not be able to use the fileSave and fileOpen methods
  11.    for ProjWindow, but, everything else should work fine.
  12.  
  13.    To create a standalone application, use the Seal-Off.. command.
  14. */
  15.  
  16. Actor[#ProjWindow] := nil;                /* avoid "undefined" dialog box */
  17. !!
  18.  
  19. LoadFiles := tuple(
  20.                "classes\date.cls",
  21.  
  22.                "act\literals.act" ,       /* From Language Extensions I */
  23.                "classes\structou.cls" ,   /* From Language Extensions I */
  24.                "classes\storedob.cls" ,   /* From Language Extensions I */
  25.                "act\objstore.act",        /* From Language Extensions I */
  26.                "act\projstor.act",        /* To store project objects   */
  27.  
  28.                "classes\callback.cls",    /* Actor printer support */
  29.                "res\printer.h",
  30.                "classes\printdia.cls",
  31.                "classes\lpdevice.cls",
  32.                "classes\printer.cls",
  33.                "act\printwin.act",        /* screen printing, clipping */
  34.                "act\clipwin.act",
  35.                "act\date.act",
  36.                "res\proj.h",              /* constants */
  37.                "act\proj.act",            /* misc. methods */
  38.                "classes\ActivDia.cls",    /* dialog classes */
  39.                "classes\MStoneDi.cls",
  40.                "classes\TaskDial.cls",
  41.                "classes\PERTDial.cls",
  42.                "classes\PWSetDia.cls",
  43.                "classes\ProjDial.cls",
  44.                "classes\resdialo.cls",
  45.                "classes\Node.cls",        /* other project classes */
  46.                "classes\Activity.cls",
  47.                "classes\Mileston.cls",
  48.                "classes\Task.cls",
  49.                "classes\PERTTask.cls",
  50.                "classes\resource.cls",
  51.                "classes\Network.cls",     
  52.                "classes\Project.cls",
  53.                "classes\Ganttwin.cls",    /* window classes */
  54.                "classes\ProjWind.cls",
  55.                "classes\ProjApp.cls",     /* application class */
  56.  
  57.                {setImageName(TheApp,"proj.ima");
  58.                 printLine("");
  59.                 printLine("cleaning up...");
  60.                 cleanup();
  61.                 snapshot(TheApp);}
  62.               );
  63. !!
  64.  
  65.